Other Enums

The following enums are available globally.

  • Virtual time comparison result.

    This is aditional abstraction because NSDate is unfortunately not comparable. Extending NSDate with Comparable would be too risky because of possible collisions with other libraries.

    See more

    Declaration

    Swift

    public enum VirtualTimeComparison
  • Generic Rx error codes.

    See more

    Declaration

    Swift

    public enum RxError
        : ErrorType
        , CustomDebugStringConvertible
  • Represents a sequence event.

    Sequence grammar: Next* (Error | Completed)

    See more

    Declaration

    Swift

    public enum Event<Element>